home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / gemxx19.zoo / gem++19 / include / gemto.h < prev    next >
C/C++ Source or Header  |  1993-04-28  |  774b  |  31 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEMtextobject - derivative of a GEMobject which coerces to char*.
  4. //
  5. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  6. //  This file is part of the gem++ library.
  7. //  You are free to copy and modify these sources, provided you acknowledge
  8. //  the origin by retaining this notice, and adhere to the conditions
  9. //  described in the file COPYING.LIB.
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12.  
  13. #ifndef GEMto_h
  14. #define GEMto_h
  15.  
  16. #include <gemo.h>
  17.  
  18.  
  19. class GEMtextobject : public GEMobject
  20. {
  21. public:
  22.     GEMtextobject(class GEMform& f, int RSCindex);
  23.  
  24.     operator char*() const;
  25.     GEMtextobject& operator = (char*);
  26.     char& operator[] (int);
  27. };
  28.  
  29.  
  30. #endif
  31.